/* 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.14em;
  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: 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, background-color 0.18s ease,
    box-shadow 0.18s ease, transform 0.18s ease;
}

.offerings-page .offerings-row:hover {
  border-color: var(--color-accent-light, #c69a6d);
  background-color: #fffdf9;
  box-shadow: 0 10px 26px -16px rgba(33, 28, 23, 0.35);
  transform: translateY(-1px);
}

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

.offerings-page .offerings-row:focus-visible {
  outline: 2px solid var(--color-accent, #6b4c3b);
  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: #f4ecdd;
  border: 1px solid rgba(107, 76, 59, 0.1);
}

.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: #f4ede2;
  background: #2d2620;
  border: 1px solid #2d2620;
}

.offerings-page .offerings-chip--popular {
  color: #2a1e12;
  background: #d9a441;
  border: 1px solid #d9a441;
}

.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;
  }
}
