/* WPL Vissersapp — shared styles for all pages */

@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes sheetIn { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

:root {
  --bg-page: #e4ded0;
  --bg-phone: #1c1210;
  --bg-card: #2a1c18;
  --bg-card-alt: #231713;
  --bg-input: #2a1c18;
  --text: #f4efe8;
  --text-dim-70: rgba(244, 239, 232, .7);
  --text-dim-65: rgba(244, 239, 232, .65);
  --text-dim-55: rgba(244, 239, 232, .55);
  --text-dim-45: rgba(244, 239, 232, .45);
  --text-dim-40: rgba(244, 239, 232, .4);
  --border: rgba(255, 255, 255, .08);
  --border-soft: rgba(255, 255, 255, .05);
  --border-softer: rgba(255, 255, 255, .06);
  --gold: #bfa75e;
  --gold-hover: #d4bd77;
  --brown: #874b41;
  --green: #8bb87a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg-page);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }
input, select, button { font-family: 'Inter', sans-serif; }
button { cursor: pointer; }
::-webkit-scrollbar { width: 0; height: 0; }

.heading {
  font-family: 'Oswald', sans-serif;
}

/* ---------- Phone frame ---------- */

.phone-wrap {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 12px;
  background: var(--bg-page);
  overflow: hidden;
}

.phone {
  width: 430px;
  max-width: 100%;
  height: 900px;
  max-height: 100%;
  background: var(--bg-phone);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--text);
}

@media (max-width: 600px), (max-height: 600px) and (pointer: coarse) {
  .phone-wrap {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 0;
  }

  .phone {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ---------- Offline bar ---------- */

.offline-bar {
  display: none;
  background: #4a2f14;
  color: #f2d9a3;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 16px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.offline-bar .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.offline-bar .label { flex: 1; }
.offline-bar .view-link { opacity: .7; }

/* ---------- Header ---------- */

.app-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.app-header .brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-header .brand-logo {
  height: 26px;
  width: auto;
  display: block;
}

.app-header .brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
}

.team-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 5px 10px 5px 6px;
  border-radius: 20px;
}

.team-badge .boat-no {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-phone);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
}

.team-badge .team-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
}

/* ---------- Main content area ---------- */

.app-main {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px 90px;
  position: relative;
}

.page-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 4px;
}

.page-subtitle {
  color: var(--text-dim-55);
  font-size: 13px;
  margin-bottom: 20px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-dim-45);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 10px;
}

.section-row .section-label { margin-bottom: 0; }

.section-row .section-link {
  font-size: 12px;
  color: var(--gold);
  cursor: pointer;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
}

/* ---------- Cards / lists ---------- */

.card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-softer);
  overflow: hidden;
}

.card-pad {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-softer);
  padding: 16px;
}

.contact-intro {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dim-70);
}

.contact-actions {
  display: flex;
  gap: 8px;
}

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

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

.thumb-placeholder {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: #33211c;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.avatar-circle {
  border-radius: 50%;
  font-weight: 700;
  color: var(--bg-phone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  flex-shrink: 0;
}

/* ---------- Day cards (home) ---------- */

.day-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  border: 1px solid var(--border-softer);
}

.day-card .day-title { font-size: 13px; font-weight: 700; }
.day-card .day-water { font-size: 12.5px; color: var(--text-dim-55); margin-top: 2px; }
.day-card .day-link { font-size: 11px; font-weight: 600; color: var(--gold); white-space: nowrap; }

/* ---------- Buttons ---------- */

.btn {
  border: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: .03em;
}

.btn-primary {
  width: 100%;
  background: var(--gold);
  color: var(--bg-phone);
  font-size: 15px;
  padding: 14px;
}

.btn-primary:hover { background: var(--gold-hover); }

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--text);
  font-size: 13px;
  padding: 13px;
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid rgba(191, 167, 94, .4);
  color: var(--gold);
  font-size: 13px;
  padding: 11px 20px;
}

.helper-text {
  text-align: center;
  color: var(--text-dim-40);
  font-size: 12px;
  margin-top: 18px;
}

/* ---------- Filters ---------- */

.filter-row {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.filter-btn {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: var(--bg-card);
  color: var(--text-dim-70);
  border: 1px solid var(--border);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--bg-phone);
  border-color: var(--gold);
}

/* ---------- Tables ---------- */

.table-head {
  display: flex;
  gap: 6px;
  font-size: 10.5px;
  color: var(--text-dim-40);
  padding: 0 2px 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.table-head .col { cursor: default; }
.table-head .col.sortable { cursor: pointer; }

.table-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  background: var(--bg-card);
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid var(--border-soft);
}

.status-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 7px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ---------- Score card (vissen) ---------- */

.score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  cursor: pointer;
}

.score-card .score-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.score-card .score-label {
  font-size: 12px;
  color: var(--text-dim-55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.score-card .score-toggle { font-size: 11px; color: var(--gold); }

.score-card .score-total {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--gold);
  margin-top: 2px;
}

.score-breakdown {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-softer);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 12.5px;
}

.score-breakdown .row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-soft);
}

.score-breakdown .row .k { color: var(--text-dim-70); }
.score-breakdown .row .v { font-weight: 600; }

.score-breakdown .total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 6px;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid var(--border-soft);
}

.score-breakdown .fish-subhead {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-dim-40);
  text-transform: uppercase;
  margin: 10px 0 4px;
}

.score-breakdown .fish-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--text-dim-65);
}

.score-breakdown .fish-row .len { font-weight: 600; color: var(--text); }
.score-breakdown .fish-row .dt { color: var(--text-dim-40); }

/* ---------- Toggle switch ---------- */

.toggle-switch {
  width: 42px;
  height: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .15);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}

.toggle-switch.on { background: var(--gold); }

.toggle-switch .knob {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left .15s;
}

.toggle-switch.on .knob { left: 21px; }

/* ---------- Form fields ---------- */

.field-label {
  font-size: 12px;
  color: var(--text-dim-70);
  margin-bottom: 6px;
  display: block;
}

.field-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--text);
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 10px;
  outline: none;
}

.field-input:focus { border-color: var(--gold); }

/* ---------- Bottom nav ---------- */

.bottom-nav {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  background: #17110f;
  position: relative;
  z-index: 10;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 0;
  cursor: pointer;
  color: var(--text-dim-40);
  background: none;
  border: none;
}

.nav-item.active { color: var(--gold); }

.nav-item svg {
  width: 26px;
  height: 26px;
}

.nav-item .nav-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ---------- FAB ---------- */

.fab {
  position: absolute;
  right: 16px;
  bottom: 78px;
  z-index: 15;
  width: auto;
  height: 56px;
  padding: 0;
  border-radius: 28px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.fab-label {
  height: 40px;
  margin-right: -7px;
  padding: 0 19px 0 15px;
  border: 1px solid rgba(191, 167, 94, .24);
  border-radius: 20px 0 0 20px;
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .035em;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

.fab-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(135, 75, 65, .4);
}

/* ---------- Catch flow overlay ---------- */

.catchflow-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-phone);
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  animation: fadeIn .12s ease-out;
}

.catchflow-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.catchflow-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
}

.catchflow-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  flex: 1;
  text-align: center;
  margin-right: 32px;
}

.progress-row {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.progress-seg {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .1);
}

.progress-seg.active { background: var(--gold); }

.catchflow-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catchflow-intro {
  font-size: 13.5px;
  color: var(--text-dim-65);
  margin-bottom: 14px;
  line-height: 1.5;
}

.camera-stage {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  display: flex;
  min-height: 0;
}

.camera-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.camera-orientation-hint {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(28, 18, 16, .74);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}

.camera-switch-btn[hidden] {
  display: none;
}

.camera-switch-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 8px 8px;
  border-radius: 20px;
  background: rgba(28, 18, 16, .7);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .02em;
  cursor: pointer;
}

.camera-switch-btn:disabled {
  opacity: .5;
  cursor: default;
}

.catchflow-error {
  background: rgba(191, 80, 80, .15);
  border: 1px solid rgba(191, 80, 80, .4);
  color: #e8a3a3;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 10px;
  margin: 12px 0 0;
}

.camera-actions {
  margin-top: 12px;
}

.camera-retry-btn {
  margin-top: 10px;
}

.photo-preview {
  flex: 1;
  border-radius: 16px;
  background-color: #33211c;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 239, 232, .3);
  font-size: 12px;
  font-family: ui-monospace, monospace;
}

.photo-review-question {
  font-size: 13.5px;
  color: var(--text-dim-65);
  margin-bottom: 14px;
}

.btn-row { display: flex; gap: 8px; }
.btn-row .btn { flex: 1; }

@media (orientation: landscape) and (max-width: 1100px) {
  .catchflow-overlay.catchflow-media-step {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-right: max(12px, env(safe-area-inset-right));
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .catchflow-media-step .catchflow-topbar {
    position: absolute;
    top: max(10px, env(safe-area-inset-top));
    left: max(12px, env(safe-area-inset-left));
    z-index: 3;
    width: min(240px, 34vw);
    height: 34px;
    margin: 0;
    padding-right: 10px;
    border-radius: 18px;
    background: rgba(28, 18, 16, .76);
    backdrop-filter: blur(8px);
  }

  .catchflow-media-step .catchflow-close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .1);
  }

  .catchflow-media-step .catchflow-title {
    overflow: hidden;
    margin-right: 0;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catchflow-media-step .progress-row {
    position: absolute;
    top: max(25px, calc(env(safe-area-inset-top) + 15px));
    right: max(174px, calc(env(safe-area-inset-right) + 162px));
    z-index: 3;
    width: min(220px, 28vw);
    margin: 0;
  }

  .catchflow-media-step .catchflow-body {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 10px 12px;
  }

  .catchflow-capture-step .camera-stage,
  .catchflow-review-step .photo-preview {
    grid-column: 1;
    grid-row: 1 / 4;
    min-height: 0;
    margin: 0;
    border-radius: 12px;
  }

  .catchflow-media-step .catchflow-intro,
  .catchflow-media-step .photo-review-question {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
    padding-top: 4px;
    font-size: 12px;
    line-height: 1.4;
  }

  .catchflow-media-step .catchflow-error {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    max-height: 100%;
    margin: 0;
    overflow: auto;
    font-size: 11px;
  }

  .catchflow-media-step .btn-row {
    grid-column: 2;
    grid-row: 3;
    flex-direction: column;
    margin: 0;
  }

  .catchflow-media-step .btn-row .btn {
    flex: none;
    min-height: 44px;
    padding: 10px 8px;
  }

  .catchflow-media-step .camera-retry-btn {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin: 0;
  }

  .catchflow-capture-step .camera-switch-btn {
    top: 10px;
    right: 10px;
  }

  .catchflow-media-step .camera-orientation-hint {
    display: none;
  }
}

.uploading-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(191, 167, 94, .25);
  border-top-color: var(--gold);
  animation: spin .8s linear infinite;
}

.uploading-view .uploading-text {
  font-size: 13.5px;
  color: var(--text-dim-65);
  text-align: center;
}

.uploading-view .uploading-sub {
  font-size: 11.5px;
  color: var(--text-dim-40);
}

.done-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.done-view .check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.done-view .done-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 19px;
}

.done-view .done-text {
  font-size: 13.5px;
  color: var(--text-dim-65);
  line-height: 1.5;
}

.done-view .btn-primary { width: auto; padding: 13px 24px; margin-top: 8px; }

/* ---------- Queue modal ---------- */

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 30;
  display: flex;
  align-items: flex-end;
}

.modal-sheet {
  width: 100%;
  background: var(--bg-card-alt);
  border-radius: 18px 18px 0 0;
  padding: 20px 18px 28px;
  animation: sheetIn .18s ease-out;
}

.modal-sheet .grabber {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, .15);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.modal-sheet .modal-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 4px;
}

.modal-sheet .modal-desc {
  font-size: 12.5px;
  color: var(--text-dim-55);
  margin-bottom: 16px;
}

.queue-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--bg-card);
  border-radius: 10px;
  margin-bottom: 8px;
}

.queue-row .thumb-placeholder { width: 32px; height: 32px; }
.queue-row .queue-desc { flex: 1; font-size: 12.5px; font-weight: 600; }
.queue-row .queue-time { font-size: 11px; color: var(--text-dim-40); }

/* ---------- Lightbox ---------- */

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .12s ease-out;
}

.lightbox-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background-color: #33211c;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 239, 232, .3);
  font-size: 12px;
  font-family: ui-monospace, monospace;
  margin-bottom: 16px;
}

.lightbox-actions { display: flex; gap: 10px; }

.btn-ghost-light {
  background: rgba(255, 255, 255, .1);
  color: var(--text);
  border: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  padding: 11px 20px;
  border-radius: 9px;
}

.btn-gold-sm {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-phone);
  border: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  padding: 11px 20px;
  border-radius: 9px;
}

.btn-gold-sm:hover { color: var(--bg-phone); }
