.view { min-height: calc(100vh - 56px); padding-bottom: 80px; }

/* Header */
.header {
  background: var(--season-primary);
  color: var(--colour-cream);
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.header--column { flex-direction: column; align-items: flex-start; padding-bottom: 20px; padding-right: 88px; }
.header__eyebrow { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; margin-bottom: 6px; }
.header__title { font-size: 22px; font-weight: 600; letter-spacing: 0.02em; line-height: 1.2; flex: 1; display: flex; align-items: center; gap: 8px; }
.header__sub { font-size: 13px; opacity: 0.8; margin-top: 2px; }

/* Section */
.section { padding: 16px 16px 0; }
.section-pad { padding: 16px 16px 80px; }

/* Cards */
.card {
  background: var(--colour-white);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover { box-shadow: 0 3px 10px rgba(0,0,0,0.12); }
.card--static { cursor: default; }
.card--muted { background: var(--colour-bg-alt); }
.card__body { padding: 14px 16px; }
.card__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.card__title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.card__title--sm { font-size: 17px; }
.card__sub { font-size: 13px; color: var(--colour-muted); }

/* Progress bar */
.progress-bar { height: 4px; background: var(--colour-divider); border-radius: 2px; overflow: hidden; }
.progress-bar__fill { height: 100%; border-radius: 2px; transition: width 0.4s; }
.progress-bar--thin { height: 3px; margin-top: 8px; }

/* Divider */
.divider { height: 1px; background: var(--colour-divider); margin: 16px 0; }

/* Prose */
.prose { font-size: 17px; line-height: 1.7; color: var(--colour-ink); }
.prose--italic { font-style: italic; }
.prose--quoted { border-left: 3px solid currentColor; padding-left: 14px; color: var(--colour-muted); font-size: 16px; margin-bottom: 20px; }
.prose--collect { line-height: 1.8; margin-bottom: 24px; }

/* Label */
.label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--colour-muted);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* Completed banner */
.completed-banner {
  background: rgba(201,146,42,0.13);
  border: 1.5px solid var(--colour-gold);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: center;
}

/* Intention block */
.intention-block {
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

/* Day header row */
.day-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.day-header__right { font-size: 12px; color: var(--colour-muted); }

/* Nav row */
.btn-row { display: flex; gap: 10px; }

/* Feast day list item */
.feast-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--colour-divider);
}
.feast-item__title { font-size: 15px; font-weight: 500; }
.feast-item__date { font-size: 13px; font-weight: 600; }

/* Settings row */
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--colour-bg-alt);
  cursor: pointer;
}
.setting-row:last-child { border-bottom: none; }
.setting-row__label { font-size: 16px; }

/* Colour swatches */
.swatch-row { display: flex; gap: 10px; margin-top: 12px; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.swatch__dot { width: 24px; height: 24px; border-radius: 6px; }
.swatch__name { font-size: 10px; color: var(--colour-muted); }

/* About text */
.about-text { font-size: 14px; color: var(--colour-muted); line-height: 1.7; }

/* Custom form */
.custom-day { margin-bottom: 16px; }
.custom-day__label { font-size: 13px; color: var(--colour-muted); margin-bottom: 6px; font-weight: 600; }
