/* ============================================================
   SIENNA - App Styles
   Save to: D:\sienna\frontend\css\app.css
   New file
   All styles for the Sienna PWA
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --bg:           #FDFAF6;
  --surface:      #F5EFE6;
  --border:       #E8DDD2;
  --terracotta:   #C1714A;
  --rust:         #8B4F2E;
  --espresso:     #3D2B1F;
  --stone:        #9E8E7E;
  --stone-light:  #C4B8AE;
  --white:        #FFFFFF;
  --error:        #C0392B;
  --success:      #4A7C59;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-full:  999px;

  --shadow-sm:    0 1px 3px rgba(61,43,31,0.08);
  --shadow-md:    0 4px 16px rgba(61,43,31,0.10);
  --shadow-lg:    0 8px 32px rgba(61,43,31,0.14);

  --max-w:        480px;
  --screen-pad:   24px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--espresso);
  min-height: 100dvh;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-ui); border: none; background: none; }
input { font-family: var(--font-ui); }
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── App shell ────────────────────────────────────────────── */
#app {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Screen system ────────────────────────────────────────── */
.screen {
  display: none;
  flex-direction: column;
  flex: 1;
  padding: var(--screen-pad);
  animation: screenIn 0.3s ease;
}
.screen.active { display: flex; }

@keyframes screenIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Wordmark ─────────────────────────────────────────────── */
.wordmark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rust);
  letter-spacing: -0.02em;
  line-height: 1;
}
.wordmark span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Typography ───────────────────────────────────────────── */
.screen-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 8px;
}
.screen-subtitle {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.5;
  margin-bottom: 32px;
}
.label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.hint {
  font-size: 0.8125rem;
  color: var(--stone);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Inputs ───────────────────────────────────────────────── */
.input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--espresso);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.input::placeholder { color: var(--stone-light); }
.input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193,113,74,0.12);
}
.input.error { border-color: var(--error); }

.input-group { margin-bottom: 20px; }

/* ── Phone input row (country dropdown + local number) ─────────────────
   Used on trial, login, and signup phone-entry screens.
   The select and input sit side-by-side inside a shared container
   so they read as a single cohesive control.
   E.164 assembly is handled in app.js buildE164FromParts().    */
.phone-input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.phone-country-select {
  /* Fixed width — just enough for "🇳🇿 NZ +64" */
  flex: 0 0 auto;
  width: 120px;
  padding: 14px 10px;
  cursor: pointer;
  /* Override default select appearance so it matches .input */
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B7355' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.phone-local-input {
  /* Takes remaining width */
  flex: 1 1 auto;
  min-width: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s, opacity 0.2s;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; pointer-events: none; }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(193,113,74,0.30);
}
.btn-primary:hover { background: var(--rust); box-shadow: 0 4px 16px rgba(139,79,46,0.30); }

.btn-secondary {
  background: var(--surface);
  color: var(--espresso);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { background: var(--border); }

.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  font-weight: 500;
}
.btn-ghost:hover { text-decoration: underline; }

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ── Error message ────────────────────────────────────────── */
.error-msg {
  display: none;
  background: #FEF0EE;
  border: 1px solid #F5C6C0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.875rem;
  color: var(--error);
  margin-bottom: 16px;
  line-height: 1.4;
}
.error-msg.visible { display: block; }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--stone-light);
  font-size: 0.8125rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Header bar (screens with back nav) ───────────────────── */
.screen-header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding-top: 8px;
}
.back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--stone);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 4px 0;
  margin-right: auto;
  transition: color 0.2s;
}
.back-btn:hover { color: var(--espresso); }
.back-btn svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════════════════════════
   SCREEN: LANDING
   ════════════════════════════════════════════════════════════ */
#screen-landing {
  justify-content: space-between;
  padding-top: 56px;
  padding-bottom: 40px;
}
.landing-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing-wordmark {
  margin-bottom: 48px;
}
.landing-headline {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.landing-headline em {
  font-style: italic;
  color: var(--terracotta);
}
.landing-body {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 320px;
}
.landing-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing-signin {
  text-align: center;
  font-size: 0.875rem;
  color: var(--stone);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   SCREEN: TRIAL — phone entry
   ════════════════════════════════════════════════════════════ */
#screen-trial-phone {
  padding-top: 48px;
}
.trial-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}
.trial-step {
  height: 3px;
  flex: 1;
  background: var(--border);
  border-radius: var(--radius-full);
  transition: background 0.3s;
}
.trial-step.active { background: var(--terracotta); }

/* ════════════════════════════════════════════════════════════
   SCREEN: TRIAL — code entry
   ════════════════════════════════════════════════════════════ */
#screen-trial-code { padding-top: 48px; }
.code-input {
  font-size: 1.375rem;
  letter-spacing: 0.15em;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.resend-row {
  text-align: center;
  margin-top: 16px;
}

/* ════════════════════════════════════════════════════════════
   SCREEN: LOGIN
   ════════════════════════════════════════════════════════════ */
#screen-login { padding-top: 48px; }

/* ════════════════════════════════════════════════════════════
   SCREEN: SIGNUP
   ════════════════════════════════════════════════════════════ */
#screen-signup { padding-top: 48px; }

/* ════════════════════════════════════════════════════════════
   SCREEN: UPLOAD
   ════════════════════════════════════════════════════════════ */
#screen-upload {
  padding-top: 48px;
}
.upload-greeting {
  font-size: 0.9375rem;
  color: var(--stone);
  margin-bottom: 4px;
}
.upload-greeting strong {
  color: var(--espresso);
  font-weight: 600;
}
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: var(--stone);
  margin-bottom: 28px;
}
.trial-badge span { color: var(--terracotta); font-weight: 600; }

.upload-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 24px;
  min-height: 240px;
  position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--terracotta);
  background: #FBF4EE;
}
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-icon {
  width: 48px;
  height: 48px;
  color: var(--stone-light);
  margin-bottom: 16px;
}
.upload-zone-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 6px;
}
.upload-zone-hint {
  font-size: 0.8125rem;
  color: var(--stone);
}

/* Preview state */
.upload-zone.has-preview {
  padding: 0;
  overflow: hidden;
  border-style: solid;
  border-color: var(--terracotta);
}
.upload-preview {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 2px);
}
.upload-zone.has-preview .upload-preview { display: block; }
.upload-zone.has-preview .upload-icon,
.upload-zone.has-preview .upload-zone-title,
.upload-zone.has-preview .upload-zone-hint { display: none; }

.upload-change {
  text-align: center;
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════
   SCREEN: GENERATING
   ════════════════════════════════════════════════════════════ */
#screen-generating {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0;
}
.generating-wordmark {
  position: absolute;
  top: var(--screen-pad);
  left: var(--screen-pad);
}
.generating-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 8px;
}
.generating-subtitle {
  font-size: 0.875rem;
  color: var(--stone);
  margin-bottom: 48px;
}

/* Steps */
.generating-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 320px;
  margin-bottom: 48px;
}
.gen-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  opacity: 0.3;
  transition: opacity 0.5s ease;
  position: relative;
}
.gen-step.active { opacity: 1; }
.gen-step.done { opacity: 0.5; }

/* Connector line between steps */
.gen-step::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 42px;
  bottom: -14px;
  width: 2px;
  background: var(--border);
}
.gen-step:last-child::after { display: none; }
.gen-step.done::after { background: var(--terracotta); }

.gen-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  z-index: 1;
}
.gen-step.active .gen-step-icon {
  border-color: var(--terracotta);
  background: #FBF4EE;
}
.gen-step.done .gen-step-icon {
  border-color: var(--terracotta);
  background: var(--terracotta);
}
.gen-step-icon svg {
  width: 15px;
  height: 15px;
  color: var(--stone);
}
.gen-step.active .gen-step-icon svg { color: var(--terracotta); }
.gen-step.done .gen-step-icon svg { color: var(--white); }

.gen-step-text {
  display: flex;
  flex-direction: column;
  padding-top: 5px;
}
.gen-step-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.3;
}
.gen-step-desc {
  font-size: 0.8125rem;
  color: var(--stone);
  margin-top: 2px;
}

/* Pulse animation for active step icon */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193,113,74,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(193,113,74,0); }
}
.gen-step.active .gen-step-icon { animation: pulse 1.8s ease infinite; }

/* ════════════════════════════════════════════════════════════
   SCREEN: RESULTS
   ════════════════════════════════════════════════════════════ */
#screen-results {
  padding-top: 0;
  overflow-y: auto;
}
.results-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  padding: var(--screen-pad) var(--screen-pad) 16px;
  margin: 0 calc(-1 * var(--screen-pad));
  z-index: 10;
  border-bottom: 1px solid var(--border);
}
.results-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.results-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--espresso);
}
.results-new-btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  padding: 6px 0;
}

.results-image-wrap {
  width: calc(100% + 2 * var(--screen-pad));
  margin: 0 calc(-1 * var(--screen-pad));
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
}
.results-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-body {
  padding: 24px 0 32px;
}
.results-section-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* Download buttons */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.download-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s;
  text-align: left;
  width: 100%;
}
.download-btn:hover:not(:disabled) {
  border-color: var(--terracotta);
  background: #FBF4EE;
}
.download-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--surface);
}
.download-btn-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.download-platform-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.download-platform-icon svg { width: 18px; height: 18px; color: var(--stone); }
.download-btn:hover:not(:disabled) .download-platform-icon svg { color: var(--terracotta); }
.download-btn:disabled .download-platform-icon svg { color: var(--stone-light); }

.download-btn-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--espresso);
  display: block;
}
.download-btn-size {
  font-size: 0.8125rem;
  color: var(--stone);
  display: block;
  margin-top: 1px;
}
.download-btn-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.download-btn-right svg { width: 18px; height: 18px; color: var(--stone); }
.download-btn:disabled .download-btn-right svg { display: none; }
.downloaded-badge {
  display: none;
  font-size: 0.75rem;
  color: var(--stone);
  font-weight: 500;
}
.download-btn:disabled .downloaded-badge { display: block; }

/* Upsell / next action panel */
.results-cta-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.results-cta-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 8px;
}
.results-cta-body {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ── Loading spinner (inline) ─────────────────────────────── */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
.spinner-dark {
  border-color: rgba(61,43,31,0.2);
  border-top-color: var(--espresso);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Toast notification ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--espresso);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 16px;        /* softer radius for multi-line messages */
  font-size: 0.875rem;
  font-weight: 500;
  white-space: normal;        /* allow text to wrap — was nowrap, caused truncation */
  word-wrap: break-word;      /* break long words if needed */
  text-align: center;         /* centre-align wrapped text */
  z-index: 9999;
  transition: transform 0.3s ease;
  pointer-events: none;
  max-width: calc(var(--max-w) - 48px); /* already present — now effective with wrapping */
  width: max-content;         /* shrink to content for short messages */
  max-width: min(calc(var(--max-w) - 48px), 360px); /* cap width on wide screens */
}
.toast.visible { transform: translateX(-50%) translateY(0); }

/* ── Responsive: desktop centering ───────────────────────── */
@media (min-width: 520px) {
  #app {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    min-height: 100dvh;
  }
  .results-header {
    padding-left: var(--screen-pad);
    padding-right: var(--screen-pad);
  }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Credit pill (upload screen header) ─────────────────────── */

.credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--linen);
  border: 1px solid rgba(193, 113, 74, 0.2);
  border-radius: 20px;
  padding: 4px 6px 4px 10px;
  font-size: 0.75rem;
  color: var(--espresso);
  font-family: var(--font-ui);
  white-space: nowrap;
}

.credit-pill svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

.credit-pill-buy {
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 3px 8px;
  font-size: 0.7rem;
  font-family: var(--font-ui);
  cursor: pointer;
  white-space: nowrap;
  margin-left: 2px;
  transition: background 0.15s;
}

.credit-pill-buy:hover {
  background: var(--rust);
}


/* ── Purchase modal overlay ──────────────────────────────────── */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61, 43, 31, 0.5);
  z-index: 100;
  align-items: flex-end;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-sheet {
  background: var(--bg);
  border-radius: 20px 20px 0 0;
  padding: 24px var(--screen-pad) 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}

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

.modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--espresso);
  margin: 0;
}

.modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}

.modal-close-btn:hover {
  background: var(--linen);
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--stone);
  margin: 0 0 20px;
}

.modal-footer-note {
  font-size: 0.75rem;
  color: var(--stone);
  text-align: center;
  margin: 16px 0 0;
}


/* ── Package cards ───────────────────────────────────────────── */

.package-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-card {
  background: var(--linen);
  border: 1.5px solid rgba(193, 113, 74, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.package-card-featured {
  border-color: var(--terracotta);
  background: #FDF6F1;
}

.package-featured-badge {
  position: absolute;
  top: -10px;
  left: 14px;
  background: var(--terracotta);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 8px;
  font-family: var(--font-ui);
}

.package-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.package-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--espresso);
}

.package-credits {
  font-size: 0.8125rem;
  color: var(--stone);
}

.package-card-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--espresso);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-height: unset;
}

