.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 40;
  padding: 0.45rem 0.7rem;
  background: var(--ink);
  color: var(--btn-fg);
  font-weight: 600;
  text-decoration: none;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.skip-link:focus {
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.site-title {
  margin: 0;
  font: inherit;
}
.screen {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.screen[hidden] { display: none; }
.screen-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  /* Was 3rem with single-row theme; stacked Account+theme adds ~2rem — keep logo→Country as before. */
  margin: 0 0 1rem;
}
.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}
/* CC-2026-086: tagline under the wordmark — left-aligned with the logo. */
.purpose-strip {
  margin: 0;
  max-width: none;
  padding-left: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  white-space: nowrap;
  color: var(--ink);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.logo-mark {
  width: 2rem;
  height: 2rem;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 35% 35%;
  background: var(--ink);
  border-radius: 50%;
}
.logo-word {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
select {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem 0.9rem;
  width: min(100%, 22rem);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) 50%, calc(100% - 0.75rem) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
select:focus, button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
