@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap");

:root {
  --ink: #25231f;
  --chalk: #faf6ef;
  --chalk-dim: #f0e9da;
  --marigold: #e8a33d;
  --marigold-dark: #c8862a;
  --bluebell: #5b6fa3;
  --petal: #e6879a;
  --stone: #8c8577;
  --white: #fffdf9;
  --line: rgba(37, 35, 31, 0.1);
  --shadow: 0 10px 30px rgba(37, 35, 31, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #ded6c4;
  font-family: "Inter", -apple-system, sans-serif;
  color: var(--ink);
}

.backdrop {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

/* ---------- phone frame ---------- */
.phone {
  width: 390px;
  height: 844px;
  background: var(--chalk);
  border-radius: 44px;
  border: 10px solid #1c1b18;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Opaque strip behind the notch so scrolled content can never show through
   or collide with the notch; sits above view content, below the notch itself. */
.status-bar-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  background: var(--chalk);
  z-index: 45;
}

.notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 26px;
  background: #1c1b18;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 50;
}

/* ---------- mode toggle (browse / planning / vendor) ---------- */
.mode-toggle {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--chalk);
  z-index: 44;
  display: flex;
  align-items: center;
  padding: 0 14px 8px;
  gap: 5px;
  border-bottom: 1px solid var(--line);
}

.mode-btn {
  flex: 1;
  border: none;
  background: var(--chalk-dim);
  color: var(--stone);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  padding: 8px 0;
  border-radius: 20px;
  cursor: pointer;
}

.mode-btn.active {
  background: var(--ink);
  color: var(--chalk);
}

.screen-area {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* ---------- views ---------- */
.view {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 96px 18px 16px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.view.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.view::-webkit-scrollbar {
  display: none;
}

/* ---------- typography ---------- */
h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bluebell);
  font-weight: 600;
}

.subtitle {
  color: var(--stone);
  font-size: 13.5px;
  margin-top: 4px;
  line-height: 1.4;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

/* ---------- header ---------- */
.screen-header {
  margin-bottom: 18px;
}

.screen-header h1 {
  font-size: 26px;
}

/* ---------- bottom nav ---------- */
.tabbar {
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 8px 10px calc(env(safe-area-inset-bottom, 0) + 8px);
  z-index: 40;
}

.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  padding: 6px 2px;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--stone);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 150ms ease, transform 100ms ease;
}

.tab .tab-icon {
  font-size: 19px;
  line-height: 1;
}

.tab.active {
  color: var(--bluebell);
}

.tab:active {
  transform: scale(0.92);
}

/* ---------- tap affordance ---------- */
.tappable {
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.tappable:active,
.tappable.tap-active {
  transform: scale(0.97);
}

button {
  font-family: inherit;
}

/* ---------- cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(37, 35, 31, 0.05);
}

.card.pad {
  padding: 14px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 8px;
}

.section-title h3 {
  font-size: 15px;
}

.section-title .count {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--stone);
  background: var(--chalk-dim);
  padding: 2px 8px;
  border-radius: 20px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 16px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}

.btn-primary {
  background: var(--marigold);
  color: var(--white);
}

.btn-primary:active {
  background: var(--marigold-dark);
}

.btn-ghost {
  background: var(--white);
  color: var(--bluebell);
  border: 1px solid var(--line);
}

.btn-block {
  width: 100%;
}

/* ---------- EVENT (parent home) ---------- */
.event-hero {
  background: linear-gradient(135deg, var(--bluebell) 0%, #414f78 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.event-hero-emoji {
  font-size: 40px;
  margin-bottom: 6px;
}

.event-hero h1 {
  color: var(--white);
  font-size: 21px;
}

.event-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 6px 0 0;
}

.venue-name {
  font-size: 13.5px;
  font-weight: 600;
}

.venue-sub {
  font-size: 12px;
  color: var(--stone);
  margin-top: 3px;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-time {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--bluebell);
  width: 62px;
  flex-shrink: 0;
}

.schedule-label {
  font-size: 13px;
  font-weight: 600;
}

.registry-card {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--stone);
}

.registry-card .ri {
  font-size: 20px;
  flex-shrink: 0;
}

/* ---------- GUESTS ---------- */
.rsvp-tally {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.tally-chip {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 4px;
  text-align: center;
}

.tally-chip .num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 600;
}

.tally-chip .lbl {
  font-size: 10px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.tally-chip.yes .num { color: var(--bluebell); }
.tally-chip.pending .num { color: var(--marigold-dark); }
.tally-chip.no .num { color: var(--petal); }

.guest-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.guest-row:last-child {
  border-bottom: none;
}

.guest-row .info {
  flex: 1;
  min-width: 0;
}

.guest-row .name {
  font-size: 13.5px;
  font-weight: 600;
}

.guest-row .meta {
  font-size: 11.5px;
  color: var(--stone);
  margin-top: 1px;
}

.rsvp-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 20px;
  flex-shrink: 0;
}

.rsvp-badge.yes { background: rgba(91, 111, 163, 0.15); color: var(--bluebell); }
.rsvp-badge.pending { background: rgba(232, 163, 61, 0.18); color: var(--marigold-dark); }
.rsvp-badge.no { background: rgba(230, 135, 154, 0.18); color: var(--petal); }

/* ---------- VENDOR MARKETPLACE ---------- */
.filter-chips {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.chip {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--stone);
  cursor: pointer;
}

.chip.active {
  background: var(--bluebell);
  color: var(--white);
  border-color: var(--bluebell);
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.vendor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: left;
}

.vendor-card .vp {
  font-size: 28px;
  margin-bottom: 6px;
}

.vendor-card .vn {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
}

.vendor-card .vc {
  font-size: 10.5px;
  color: var(--stone);
  margin-top: 3px;
}

.vendor-card .vm {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10.5px;
  font-family: "IBM Plex Mono", monospace;
  color: var(--marigold-dark);
}

.vendor-meta-row {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--stone);
  font-family: "IBM Plex Mono", monospace;
}

/* ---------- PLANNING ---------- */
.budget-summary-bar {
  height: 8px;
  border-radius: 6px;
  background: var(--chalk-dim);
  overflow: hidden;
  margin-bottom: 14px;
}

.budget-summary-fill {
  height: 100%;
  background: var(--marigold);
  border-radius: 6px;
}

.budget-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.budget-cat-row .bn {
  width: 92px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
}

.budget-cat-bar {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: var(--chalk-dim);
  overflow: hidden;
}

.budget-cat-fill {
  height: 100%;
  background: var(--bluebell);
  border-radius: 4px;
}

.budget-cat-row .bv {
  width: 64px;
  flex-shrink: 0;
  text-align: right;
  font-size: 10.5px;
  font-family: "IBM Plex Mono", monospace;
  color: var(--stone);
}

.booked-vendor-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.booked-vendor-row:last-child {
  border-bottom: none;
}

.booked-vendor-row .vp {
  font-size: 22px;
}

.booked-vendor-row .name {
  font-size: 13px;
  font-weight: 600;
}

.booked-vendor-row .cat {
  font-size: 11px;
  color: var(--stone);
}

.checklist-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.checklist-row:last-child {
  border-bottom: none;
}

.checklist-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white);
  cursor: pointer;
}

.checklist-checkbox.done {
  background: var(--bluebell);
  border-color: var(--bluebell);
}

.checklist-row .info {
  flex: 1;
  min-width: 0;
}

.checklist-row .label {
  font-size: 13px;
  font-weight: 600;
}

.checklist-row .label.done {
  text-decoration: line-through;
  color: var(--stone);
}

.checklist-row .due {
  font-size: 11px;
  color: var(--stone);
  margin-top: 1px;
}

/* ---------- VENDOR: INQUIRIES ---------- */
.inquiry-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.inquiry-row:last-child {
  border-bottom: none;
}

.inquiry-row .info {
  flex: 1;
  min-width: 0;
}

.inquiry-row .name {
  font-size: 13.5px;
  font-weight: 600;
}

.inquiry-row .meta {
  font-size: 11.5px;
  color: var(--stone);
  margin-top: 1px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.new {
  background: var(--marigold);
}

.status-dot.replied {
  background: var(--bluebell);
  opacity: 0.35;
}

/* ---------- VENDOR: PROFILE ---------- */
.profile-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.profile-hero-photo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--chalk-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.profile-hero h2 {
  font-size: 17px;
}

.profile-hero .sub {
  font-size: 12px;
  color: var(--stone);
  margin-top: 2px;
}

.service-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--bluebell);
  background: var(--chalk-dim);
  padding: 4px 10px;
  border-radius: 20px;
  margin: 0 6px 6px 0;
}

/* ---------- VENDOR: CALENDAR ---------- */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.cal-day.empty {
  border: none;
  background: transparent;
  cursor: default;
}

.cal-day.available {
  background: rgba(91, 111, 163, 0.1);
  border-color: rgba(91, 111, 163, 0.25);
  color: var(--bluebell);
}

.cal-day.booked {
  background: var(--marigold);
  border-color: var(--marigold);
  color: var(--white);
}

.cal-day.blocked {
  background: var(--chalk-dim);
  color: var(--stone);
  text-decoration: line-through;
}

.calendar-legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--stone);
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.dot-available { background: var(--bluebell); }
.dot-booked { background: var(--marigold); }
.dot-blocked { background: var(--stone); }

/* ---------- sheets ---------- */
.sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 35, 31, 0.4);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.sheet-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--chalk);
  border-radius: 22px 22px 0 0;
  max-height: 82%;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 240ms cubic-bezier(0.32, 0.72, 0, 1);
  padding: 14px 18px 26px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.sheet-overlay.open .sheet {
  transform: translateY(0);
}

.sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--line);
  border-radius: 3px;
  margin: 0 auto 14px;
}

.detail-hero {
  width: 100%;
  height: 130px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bluebell) 0%, var(--stone) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 14px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
}

.detail-row .k {
  color: var(--stone);
  font-weight: 600;
}

.detail-row .v {
  font-family: "IBM Plex Mono", monospace;
  color: var(--ink);
}

.detail-block h4 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone);
  margin: 16px 0 6px;
}

.detail-block p,
.detail-block li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

.detail-block ul {
  margin: 4px 0 0;
  padding-left: 18px;
}

/* ---------- RSVP sheet ---------- */
.rsvp-choice-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.rsvp-choice-btn {
  flex: 1;
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
  cursor: pointer;
}

.rsvp-choice-btn.selected {
  background: var(--ink);
  color: var(--chalk);
  border-color: var(--ink);
}

.field-row {
  margin-bottom: 14px;
}

.field-row label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 6px;
}

.field-row input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--ink);
}

.stepper {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  width: fit-content;
}

.stepper-btn {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: none;
  background: var(--chalk-dim);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.stepper span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  min-width: 14px;
  text-align: center;
}

.confetti-badge {
  font-size: 44px;
  animation: confetti-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes confetti-pop {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translate(-50%, 16px) scale(0.94);
  background: var(--ink);
  color: var(--chalk);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.toast-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--marigold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- BROWSE: DISCOVER ---------- */
.discover-hero {
  margin-bottom: 6px;
}

.discover-hero h1 {
  font-size: 24px;
}

.featured-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.featured-card {
  flex-shrink: 0;
  width: 140px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.category-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.category-tile .ci {
  font-size: 22px;
}

.theme-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.theme-row .ti {
  font-size: 26px;
  flex-shrink: 0;
}

.theme-row .info {
  flex: 1;
  min-width: 0;
}

.theme-row .name {
  font-size: 13px;
  font-weight: 700;
}

.theme-row .meta {
  font-size: 11px;
  color: var(--stone);
  margin-top: 2px;
  line-height: 1.4;
}

/* ---------- BROWSE: SAVED / empty states ---------- */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--stone);
}

.empty-state .ei {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.empty-state p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* ---------- vendor detail: save heart ---------- */
.save-heart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--petal);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.save-heart-btn.saved {
  color: var(--petal);
}

.detail-hero {
  position: relative;
}

/* ---------- VENDOR: BOOKINGS ---------- */
.booking-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.booking-row:last-child {
  border-bottom: none;
}

.booking-row .info {
  flex: 1;
  min-width: 0;
}

.booking-row .name {
  font-size: 13px;
  font-weight: 600;
}

.booking-row .meta {
  font-size: 11.5px;
  color: var(--stone);
  margin-top: 1px;
}

.booking-amount {
  font-size: 13px;
  font-weight: 700;
  color: var(--marigold-dark);
  flex-shrink: 0;
}

/* ---------- VENDOR: REVIEWS ---------- */
.review-row {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.review-row:last-child {
  border-bottom: none;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.review-top .name {
  font-size: 12.5px;
  font-weight: 700;
}

.review-top .stars {
  font-size: 11px;
  color: var(--marigold);
  letter-spacing: 1px;
}

.review-row p {
  font-size: 12.5px;
  color: var(--stone);
  line-height: 1.45;
  margin: 0;
}

/* ---------- misc ---------- */
.spacer-40 {
  height: 40px;
}
