/* Shared public suite shell for BellerCreatives domain fronts. */
:root {
  --bc-site-ink: #182334;
  --bc-site-muted: #5e6674;
  --bc-site-paper: #fbfcfd;
  --bc-site-warm: #f8f6f0;
  --bc-site-surface: #ffffff;
  --bc-site-line: #dfe4ea;
  --bc-site-nonfiction: #315f72;
  --bc-site-fiction: #a3422b;
  --bc-site-evidence: #2f6f4f;
  --bc-site-shadow: 0 18px 42px rgba(24, 35, 52, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bc-site-paper);
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--bc-site-nonfiction);
  outline-offset: 3px;
}

.bc-site-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.bc-site-panel {
  background: var(--bc-site-surface);
  border: 1px solid var(--bc-site-line);
  border-radius: 8px;
  box-shadow: var(--bc-site-shadow);
}

.bc-site-chip {
  align-items: center;
  background: rgba(49, 95, 114, 0.08);
  border: 1px solid rgba(49, 95, 114, 0.22);
  border-radius: 999px;
  color: var(--bc-site-nonfiction);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 0.4rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 0.34rem 0.78rem;
  text-transform: uppercase;
}

.suite-topbar {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.25rem 1.25rem 1.35rem;
}

.suite-topbar__brand {
  color: var(--bc-site-ink);
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
}

.suite-topbar__brand span {
  color: var(--bc-site-nonfiction);
}

.suite-topbar nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.suite-topbar nav a {
  border-radius: 8px;
  color: var(--bc-site-muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.5rem 0.62rem;
  text-decoration: none;
}

.suite-topbar nav a[aria-current="page"],
.suite-topbar nav a:hover {
  background: rgba(49, 95, 114, 0.08);
  color: var(--bc-site-ink);
}

.bc-site-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.bc-site-action-row a,
.bc-site-button {
  align-items: center;
  border: 1px solid var(--bc-site-line);
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1.2;
  min-height: 44px;
  padding: 0.72rem 0.95rem;
  text-align: center;
  text-decoration: none;
}

.bc-site-button-primary {
  background: var(--bc-site-ink);
  border-color: var(--bc-site-ink);
  color: #fff;
}

.bc-site-proof-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.bc-site-proof-item {
  background: var(--bc-site-surface);
  border: 1px solid var(--bc-site-line);
  border-radius: 8px;
  padding: 0.85rem;
}

.bc-site-proof-item strong {
  color: var(--bc-site-ink);
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.bc-site-proof-item span,
.bc-site-proof-item p {
  color: var(--bc-site-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 700px) {
  .suite-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0.9rem 1rem;
  }

  .suite-topbar nav {
    justify-content: flex-start;
    width: 100%;
  }

  .suite-topbar nav a {
    background: rgba(255,255,255,0.76);
    border: 1px solid var(--bc-site-line);
  }

  .bc-site-action-row a,
  .bc-site-button {
    width: 100%;
  }
}
