/* Products hub — calm / trust-first, 7 Stages tokens (redesign-preserve) */

.offerings-page.bg-secondary {
  background-color: var(--color-bg, #fdfaf6);
}

.offerings-page .offerings-page-section {
  padding-top: 44px;
  padding-bottom: 44px;
  margin-bottom: 0;
}

.offerings-page .offerings-container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.offerings-page .offerings-page-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 28px;
  padding-top: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border, #e0d5c7);
}

.offerings-page .offerings-page-title .section-title-heading {
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--font-heading, "Fraunces", Georgia, serif);
  font-size: clamp(1.875rem, 4vw, 2.375rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text, #2d2d2d);
}

.offerings-page .offerings-page-subtitle {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  max-width: 38ch;
  font-family: var(--font-body, "Instrument Sans", sans-serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-light, #5a5a5a);
}

.offerings-page .offerings-section {
  margin-bottom: 24px;
}

.offerings-page .offerings-section:last-child {
  margin-bottom: 0;
}

.offerings-page .offerings-section-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 10px;
}

.offerings-page .offerings-section-label {
  font-family: var(--font-body, "Instrument Sans", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent, #6b4c3b);
}

.offerings-page .offerings-section-title {
  font-family: var(--font-body, "Instrument Sans", sans-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text, #2d2d2d);
}

.offerings-page .offerings-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offerings-page .offerings-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border, #e0d5c7);
  border-radius: var(--radius-md, 12px);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.offerings-page .offerings-row:hover {
  border-color: #c4d9cc;
  background-color: #fefdfb;
}

.offerings-page .offerings-row:active {
  transform: scale(0.995);
}

.offerings-page .offerings-row:focus-visible {
  outline: 2px solid #2d6a4f;
  outline-offset: 2px;
}

.offerings-page .offerings-row-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e8f4ec;
}

.offerings-page .offerings-row-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.offerings-page .offerings-row-body {
  flex: 1;
  min-width: 0;
}

.offerings-page .offerings-row-heading {
  margin: 0;
}

.offerings-page .offerings-row-title-group {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  max-width: 100%;
}

.offerings-page .offerings-row-title {
  margin: 0;
  font-family: var(--font-body, "Instrument Sans", sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text, #2d2d2d);
}

.offerings-page .offerings-row-desc {
  margin: 2px 0 0;
  max-width: 52ch;
  font-family: var(--font-body, "Instrument Sans", sans-serif);
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-light, #5a5a5a);
}

.offerings-page .offerings-row-chevron {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: #c4bdb4;
  transition: color 0.15s ease;
}

.offerings-page .offerings-row:hover .offerings-row-chevron {
  color: var(--color-accent, #6b4c3b);
}

.offerings-page .offerings-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 2px 8px;
  font-family: var(--font-body, "Instrument Sans", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill, 999px);
  line-height: 1.35;
  white-space: nowrap;
}

.offerings-page .offerings-chip-icon {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

.offerings-page .offerings-chip--depth {
  color: #14532d;
  background: #bbf7d0;
  border: 1px solid #4ade80;
}

.offerings-page .offerings-chip--popular {
  color: #422006;
  background: #fcd34d;
  border: 1px solid #f59e0b;
}

.offerings-page + .section-2:empty,
.offerings-page ~ .section-2:has(.container:empty) {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .offerings-page .offerings-row,
  .offerings-page .offerings-row-chevron {
    transition: none;
  }

  .offerings-page .offerings-row:active {
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .offerings-page .offerings-page-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .offerings-page .offerings-container {
    max-width: none;
  }

  .offerings-page .offerings-row {
    padding: 10px;
    gap: 10px;
  }

  .offerings-page .offerings-row-chevron {
    display: none;
  }
}
