:root {
  color-scheme: light;
  --ink: #15201c;
  --muted: #61706a;
  --line: #dfe6df;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --forest: #173f35;
  --moss: #6f8f63;
  --gold: #c49348;
  --brick: #9b4f3c;
  --sky: #dbe9ed;
  --sage: #e7eee5;
  --shadow: 0 18px 50px rgba(20, 31, 27, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--forest);
  color: #fff;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

h1,
h2,
h3,
h4,
p {
  letter-spacing: 0;
}

.public-site {
  background: var(--paper);
}

.public-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
}

.public-login {
  white-space: nowrap;
}

.public-nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.public-hero {
  min-height: min(760px, calc(100vh - 150px));
  display: flex;
  align-items: flex-end;
  padding: 34px 28px 58px;
  background:
    linear-gradient(90deg, rgba(17, 35, 30, 0.9), rgba(17, 35, 30, 0.34)),
    url("assets/venue-room.jpg") center / cover;
  color: #fff;
}

.public-hero-copy {
  width: min(1040px, 100%);
  min-width: 0;
}

.public-hero h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
}

.lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.45;
}

.cta-grid {
  width: min(900px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.secondary-light {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.public-positioning,
.intake-section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.public-positioning {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 0 46px;
}

.public-positioning article {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.public-positioning span {
  color: var(--gold);
  font-weight: 900;
}

.public-positioning h3 {
  margin: 10px 0;
}

.public-positioning p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.intake-section {
  padding: 24px 0 72px;
}

.public-section-head {
  padding-top: 0;
}

.intake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.intake-form {
  display: grid;
  gap: 14px;
}

.intake-form:first-child {
  grid-row: span 2;
}

.form-status,
.import-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
}

.operator-anchor {
  scroll-margin-top: 16px;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  background: var(--forest);
  color: #f8f3e7;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #231b10;
  font-weight: 900;
  border-radius: 8px;
}

.brand-lockup h1 {
  margin: 0;
  font-size: 22px;
}

.eyebrow,
.panel-label {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--gold);
  font-weight: 850;
}

.nav-list {
  display: grid;
  gap: 6px;
}

.nav-item {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(248, 243, 231, 0.84);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 780;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sidebar-panel {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-panel p:last-child {
  margin: 0;
  line-height: 1.5;
  color: rgba(248, 243, 231, 0.86);
}

main {
  min-width: 0;
  padding: 28px;
}

.topbar {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 35, 30, 0.89), rgba(17, 35, 30, 0.42)),
    url("assets/venue-room.jpg") center / cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.topbar h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.nav-item:hover,
.small-button:hover,
.delete-button:hover {
  transform: translateY(-1px);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.button.primary {
  background: var(--gold);
  color: #241a0b;
}

.button.secondary {
  background: var(--forest);
  color: #fff;
}

.button.ghost {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--forest);
}

.topbar .button.ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.view {
  display: none;
  padding-top: 22px;
}

.view.active {
  display: block;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.metric,
.panel {
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric {
  padding: 18px;
}

.metric span,
.metric small,
.muted {
  color: var(--muted);
}

.metric span,
.metric small {
  display: block;
}

.metric strong {
  display: block;
  margin: 8px 0;
  font-size: 38px;
  line-height: 1;
  color: var(--forest);
}

.dashboard-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
  align-items: start;
}

.large-panel {
  grid-row: span 2;
}

.panel {
  padding: 22px;
}

.panel h3,
.tool-form h3,
.section-head h2 {
  margin: 0;
}

.panel-head,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head {
  padding-top: 24px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.briefing {
  display: grid;
  gap: 14px;
  line-height: 1.55;
}

.briefing-block {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.briefing-block h4 {
  margin: 0 0 7px;
}

.briefing-block p {
  margin: 0;
  color: var(--muted);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.form-stack {
  display: grid;
  gap: 16px;
}

.tool-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.check-row {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  color: var(--ink);
}

.check-row input {
  width: auto;
}

.field-grid,
.range-row,
.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-grid.three,
.range-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

input[type="range"] {
  padding: 0;
}

.records-panel {
  min-width: 0;
}

.records-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 10px;
  margin-bottom: 14px;
}

.record-list,
.stack-list {
  display: grid;
  gap: 10px;
}

.record {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.record h4 {
  margin: 0 0 4px;
  font-size: 17px;
}

.record p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.record-actions {
  display: flex;
  align-items: start;
  gap: 6px;
}

.small-button,
.delete-button {
  min-width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.delete-button {
  color: var(--brick);
}

.small-button {
  color: var(--forest);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pill {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

.pill.warn {
  background: #f4e4dc;
  color: var(--brick);
}

.pill.good {
  background: var(--sage);
  color: var(--forest);
}

.snapshot {
  display: grid;
  gap: 12px;
}

.snapshot-row,
.calc-item {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.snapshot-row strong,
.calc-item strong {
  display: block;
  color: var(--forest);
  font-size: 24px;
  line-height: 1.1;
}

.snapshot-row span,
.calc-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.records-divider {
  height: 1px;
  margin: 18px 0;
  background: var(--line);
}

.hygiene-tools {
  display: grid;
  gap: 12px;
}

.sync-tools {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.sync-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
}

.empty-state {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfcf9;
}

.pitch-site {
  background: #f6f1e7;
  overflow-x: hidden;
}

.pitch-site main {
  padding: 0;
}

.pitch-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(21, 32, 28, 0.12);
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(18px);
}

.pitch-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.pitch-brand strong,
.pitch-brand small {
  display: block;
}

.pitch-brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.pitch-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
}

.pitch-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.pitch-nav-links a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 850;
}

.pitch-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
  align-items: end;
  gap: 28px;
  padding: 42px 28px 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 28, 23, 0.94), rgba(11, 28, 23, 0.58) 50%, rgba(11, 28, 23, 0.16)),
    url("assets/venue-room.jpg") center / cover;
}

.pitch-hero-inner {
  width: min(1040px, 100%);
  min-width: 0;
}

.pitch-hero h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.94;
}

.pitch-lede {
  max-width: 800px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.42;
}

.pitch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pitch-hero-panel {
  align-self: end;
  min-width: 0;
  max-width: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.pitch-hero-panel span,
.office-sign span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pitch-hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.05;
}

.pitch-hero-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.pitch-section,
.pitch-band,
.pitch-cta {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.pitch-section {
  padding: 72px 0;
}

.pitch-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid rgba(21, 32, 28, 0.12);
}

.pitch-section h2,
.pitch-band h2,
.pitch-cta h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.pitch-intro p:last-child,
.office-section p,
.pitch-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.pitch-section-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.pitch-grid {
  display: grid;
  gap: 14px;
}

.pitch-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pitch-grid article,
.pilot-timeline article {
  min-width: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(21, 32, 28, 0.18);
}

.pitch-grid span,
.pilot-timeline span {
  color: var(--gold);
  font-weight: 950;
}

.pitch-grid h3,
.pilot-timeline h3 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.14;
}

.pitch-grid p,
.pilot-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pitch-band {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 44px;
  border-radius: 8px;
  color: #f8f3e7;
  background: var(--forest);
}

.pitch-band h2 {
  color: #f8f3e7;
}

.venue-brief {
  display: grid;
  gap: 16px;
}

.venue-brief div {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.venue-brief strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.venue-brief p {
  margin: 8px 0 0;
  color: rgba(248, 243, 231, 0.82);
  line-height: 1.55;
}

.pitch-section.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 44px;
  align-items: start;
}

.pilot-timeline {
  display: grid;
  gap: 24px;
}

.orbit-table {
  border-top: 1px solid rgba(21, 32, 28, 0.18);
}

.orbit-table div {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(21, 32, 28, 0.18);
}

.orbit-table strong {
  color: var(--forest);
  font-size: 18px;
}

.orbit-table span {
  color: var(--muted);
  line-height: 1.55;
}

.office-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 46px;
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid rgba(21, 32, 28, 0.12);
  border-bottom: 1px solid rgba(21, 32, 28, 0.12);
}

.office-section h2 {
  margin-bottom: 20px;
}

.office-sign {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border: 8px solid #231b10;
  border-radius: 8px;
  color: #ffe9b0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 233, 176, 0.18), transparent 30%),
    linear-gradient(135deg, #14110d, #2b1d12 58%, #0f1512);
  box-shadow: var(--shadow);
}

.office-sign strong {
  color: #ffe3a1;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.92;
}

.office-sign small {
  color: rgba(255, 243, 211, 0.78);
  font-size: 18px;
  font-weight: 850;
}

.proof-section {
  padding-bottom: 40px;
}

.pitch-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pitch-proof-grid article {
  padding: 22px;
  border: 1px solid rgba(21, 32, 28, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.pitch-proof-grid strong {
  display: block;
  color: var(--forest);
  font-size: 44px;
  line-height: 1;
}

.pitch-proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
}

.pitch-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0 64px;
}

.pitch-cta h2 {
  max-width: 820px;
  margin-bottom: 16px;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .nav-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .public-positioning,
  .intake-grid,
  .dashboard-grid,
  .workspace-grid,
  .topbar,
  .pitch-hero,
  .pitch-grid.four,
  .pitch-band,
  .pitch-section.split,
  .office-section,
  .pitch-cta {
    grid-template-columns: 1fr;
  }

  .intake-form:first-child {
    grid-row: auto;
  }

  .topbar-actions {
    justify-content: flex-start;
  }

  .large-panel {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .pitch-site * {
    min-width: 0;
  }

  main {
    padding: 14px;
  }

  .sidebar {
    padding: 18px;
  }

  .public-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .public-nav-actions,
  .pitch-nav-links {
    justify-content: flex-start;
  }

  .public-hero {
    min-height: 560px;
    padding: 22px 18px 34px;
  }

  .public-hero h2 {
    max-width: calc(100vw - 36px);
    font-size: 34px;
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .public-hero-copy {
    width: min(320px, 100%);
    max-width: min(320px, calc(100vw - 36px));
  }

  .public-hero .lede {
    width: min(320px, 100%);
    max-width: min(320px, calc(100vw - 54px));
  }

  .cta-grid .button {
    width: 100%;
    flex: 1 1 100%;
    white-space: normal;
  }

  .lede {
    max-width: calc(100vw - 54px);
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .public-positioning,
  .intake-section {
    width: calc(100% - 28px);
  }

  .metric-grid,
  .field-grid,
  .field-grid.three,
  .range-row,
  .calc-grid,
  .records-toolbar {
    grid-template-columns: 1fr;
  }

  .nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-panel {
    display: none;
  }

  .topbar {
    min-height: 420px;
    padding: 22px;
  }

  .topbar h2 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  .pitch-nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  .pitch-nav-links a:not(.button) {
    display: none;
  }

  .pitch-hero {
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr);
    min-height: 680px;
    padding: 28px 14px 36px;
    overflow: hidden;
  }

  .pitch-hero-inner,
  .pitch-hero-panel {
    width: min(340px, 100%);
    max-width: 340px;
  }

  .pitch-hero h1 {
    max-width: 340px;
    font-size: 34px;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .pitch-lede {
    max-width: 340px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .pitch-actions .button {
    width: 100%;
    flex: 1 1 100%;
    white-space: normal;
  }

  .pitch-hero-panel,
  .pitch-band,
  .pitch-proof-grid article {
    padding: 18px;
  }

  .pitch-hero-panel p,
  .venue-brief p,
  .pitch-grid p,
  .pilot-timeline p,
  .orbit-table span,
  .pitch-intro p:last-child,
  .office-section p,
  .pitch-cta p {
    font-size: 16px;
    line-height: 1.55;
  }

  .pitch-section,
  .pitch-band,
  .pitch-cta {
    width: min(340px, calc(100% - 28px));
    margin-left: 14px;
    margin-right: auto;
  }

  .pitch-section {
    padding: 48px 0;
  }

  .pitch-intro,
  .orbit-table div,
  .pitch-proof-grid {
    grid-template-columns: 1fr;
  }

  .pitch-intro {
    gap: 18px;
  }

  .pitch-section h2,
  .pitch-band h2,
  .pitch-cta h2 {
    max-width: 340px;
    font-size: 28px;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .office-sign {
    min-height: 220px;
  }

  .panel-head,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .record {
    grid-template-columns: 1fr;
  }

  .record-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
